home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C23 / Microsoft.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  1.9 KB  |  89 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C23
  7. # using the Microsoft compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f Microsoft.makefile
  11.  
  12. # Note: this requires the service Pack 3 from
  13. # www.Microsoft.com for successful compilation!
  14. CPP = cl
  15. CPPFLAGS = -GX -GR
  16. OFLAG = -o
  17. .SUFFIXES : .obj .cpp .c
  18. .cpp.obj :
  19.     $(CPP) $(CPPFLAGS) -c $<
  20. .c.obj :
  21.     $(CPP) $(CPPFLAGS) -c $<
  22.  
  23. all: \
  24.     Nonlocal.exe \
  25.     Except.exe \
  26.     Trmnator.exe \
  27.     Nudep.exe \
  28.     Wrapped.exe \
  29.     Autoexcp.exe \
  30.     Basexcpt.exe \
  31.     Catchref.exe 
  32.  
  33. test: all 
  34.     Nonlocal.exe  
  35.     Except.exe  
  36.     Trmnator.exe  
  37.     Nudep.exe  
  38.     Wrapped.exe  
  39.     Autoexcp.exe  
  40.     Basexcpt.exe  
  41.     Catchref.exe  
  42.  
  43. bugs: \
  44.     FunctionTryBlock.exe \
  45.     Cleanup.exe 
  46.  
  47. Nonlocal.exe: Nonlocal.obj 
  48.     $(CPP) $(OFLAG)Nonlocal.exe Nonlocal.obj 
  49.  
  50. Except.exe: Except.obj 
  51.     $(CPP) $(OFLAG)Except.exe Except.obj 
  52.  
  53. Trmnator.exe: Trmnator.obj 
  54.     $(CPP) $(OFLAG)Trmnator.exe Trmnator.obj 
  55.  
  56. FunctionTryBlock.exe: FunctionTryBlock.obj 
  57.     $(CPP) $(OFLAG)FunctionTryBlock.exe FunctionTryBlock.obj 
  58.  
  59. Cleanup.exe: Cleanup.obj 
  60.     $(CPP) $(OFLAG)Cleanup.exe Cleanup.obj 
  61.  
  62. Nudep.exe: Nudep.obj 
  63.     $(CPP) $(OFLAG)Nudep.exe Nudep.obj 
  64.  
  65. Wrapped.exe: Wrapped.obj 
  66.     $(CPP) $(OFLAG)Wrapped.exe Wrapped.obj 
  67.  
  68. Autoexcp.exe: Autoexcp.obj 
  69.     $(CPP) $(OFLAG)Autoexcp.exe Autoexcp.obj 
  70.  
  71. Basexcpt.exe: Basexcpt.obj 
  72.     $(CPP) $(OFLAG)Basexcpt.exe Basexcpt.obj 
  73.  
  74. Catchref.exe: Catchref.obj 
  75.     $(CPP) $(OFLAG)Catchref.exe Catchref.obj 
  76.  
  77.  
  78. Nonlocal.obj: Nonlocal.cpp 
  79. Except.obj: Except.cpp 
  80. Trmnator.obj: Trmnator.cpp 
  81. FunctionTryBlock.obj: FunctionTryBlock.cpp 
  82. Cleanup.obj: Cleanup.cpp 
  83. Nudep.obj: Nudep.cpp 
  84. Wrapped.obj: Wrapped.cpp 
  85. Autoexcp.obj: Autoexcp.cpp 
  86. Basexcpt.obj: Basexcpt.cpp 
  87. Catchref.obj: Catchref.cpp 
  88.  
  89.